home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / vblitz13.zip / VIDBLITZ.DOC < prev    next >
Text File  |  1994-12-18  |  4KB  |  83 lines

  1. VIDBLITZ reads and writes data to your video card through the CPU window
  2. located at address A0000. The data transfer is timed in "frames". A "frame"
  3. is the time it takes for the raster beam of your monitor to scan from top
  4. to bottom. In normal MCGA mode, the refresh rate of your monitor is set to
  5. 70 Hz. This means that 70 "frames" pass per second. This relationship,
  6. together with the CPU clock speed, is used to calculate the various
  7. statistics that appear on the screen when the program is run.
  8.  
  9. Note that VIDBLITZ is very accurate. You will achieve nearly identical
  10. results on machines with the same video card, provided that the bus
  11. type/speed is equal. CPU speed is only a minor factor in determining the
  12. speed of your video card.
  13.  
  14.  
  15. A typical run may look like this:
  16.  
  17. VIDBLITZ v1.30 - A MAGE Utility - (C) Fabian Gonzalez, 1994
  18.  
  19. 1024 x 4096 doublewords = 16 megabytes were read from video memory
  20.  
  21. Timing results: 140 frames, 2.00 seconds
  22.  
  23. Megabytes per second    :     8.00
  24. Kilobytes per frame     :   117.03
  25. Frames per 16 kilobytes :     0.14
  26. CPU clocks per read     :    31.79
  27.  
  28. 1024 x 16384 doublewords = 64 megabytes were written to video memory
  29.  
  30. Timing results: 177 frames, 2.53 seconds
  31.  
  32. Megabytes per second    :    25.31
  33. Kilobytes per frame     :   370.26
  34. Frames per 64 kilobytes :     0.17
  35. CPU clocks per write    :    10.05
  36.  
  37.  
  38. The number of frames used in transferring the data is shown, together with its
  39. equivalent in seconds. The throughput is shown in megabytes per second (the
  40. amount of data that can be transferred to/from video memory in a second), as
  41. kilobytes per frame (the amount of data that can be transferred in a single
  42. frame) and as frames per 64 KB. Frames per 64 KB shows the number of frames
  43. that pass in the amount of time it takes to transfer 64 KB to/from video
  44. memory. The last entry shows the CPU clock cyles used to transfer one
  45. doubleword (4 bytes) to/from video memory, when data is transferred at
  46. maximum speed.
  47.  
  48. Reads from video memory generally are a lot slower than writes. This is the
  49. reason for the reduced data transfer amount in reads contra writes.
  50.  
  51.  
  52. VIDBLITZ accepts the following options:
  53.  
  54. -h         Displays the help screen
  55. -c[speed]  Sets the CPU speed. This setting is used to calculate the number
  56.            of CPU clock cycles required per write/read. This setting defaults
  57.            to 66.67 MHz. Note that some motherboards are clocked at 66, others
  58.            at 66.67 MHz. The same applies to 33/33.33 Mhz and 99/100 Mhz
  59.            motherboards.
  60. -w[frames] Shows full timing statistics for writes, based on the number of
  61.            frames used. This option is useful for getting the full statistics
  62.            from video cards listed in VIDCARDS.TXT.
  63. -r[frames] Shows full timing statistics or reads, based on the number of
  64.            frames used. This option is useful for getting the full statistics
  65.            from video cards listed in VIDCARDS.TXT.
  66. -m         Tests the main memory of your computer instead of the video memory.
  67. -v[mode]   Selects the video mode to be tested. Valid video modes are:
  68.  
  69.               13  - 320x200x256
  70.               100 - 640x400x256   [VESA]
  71.               101 - 640x480x256   [VESA]
  72.               103 - 800x600x256   [VESA]
  73.               105 - 1024x768x256  [VESA]
  74.               107 - 1280x1024x256 [VESA]
  75.  
  76.            Mode 13 (MCGA) is the default. The VESA modes require the VESA Bios 
  77.            Extensions v1.0 or higher.
  78. -s         Selects the short output format. Only the number of frames is
  79.            displayed.
  80.  
  81. NOTE: Options are processed in the order presented here. In the case of 
  82.       a conflict, the first option to be processed is used.
  83.